home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Script for connecting to CompuServe
- ;
- CLS
- Echo "Please Wait . . ."
- Echo "Logging on CompuServe"
- localecho "on"
- Data "7"
- Parity "E"
- Stop "1"
-
- if csdial = 0 goto compu:
- else if csdial = 1 goto tele:
- else if csdial = 2 goto tym:
-
- compu:
- echo "At 7-E-1"
- dial compunet
- wait 2
- out "\r"
- in "me" 15
- out "CIS\r"
- goto finish:
-
- tele:
- echo "Via Telenet, At 7-E-1"
- dial telenet
- wait 1
- if baud = 300
- out "\r"
- else if baud = 1200
- out "\r"
- else
- out "@"
- wait 1
- out "\r"
- in "TERMINAL=" 10
- out "\r"
- in "@" 10
- out "C 202202\r"
- goto finish:
-
- tym:
- echo "Via Tymnet, 7-E-1"
- dial tymnet
- wait 2
- out "A"
- in "in" 15
- out "CPS"
- out "\r"
- goto finish:
-
- finish:
- in "ID:" 15
- out Cacct
- out "\r"
- in "word:" 15
- out Cpass
- out "\r"
- end
-